home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / ov143b.zip / STRMEM.H < prev    next >
Text File  |  1993-01-04  |  732b  |  20 lines

  1. /*  001  20-Apr-87  strmem.h
  2.  
  3.         Copyright (c) 1987 by Blue Sky Software.  All rights reserved.
  4. */
  5.  
  6. #define ALTCALL pascal         /* alternate calling method reduces overhead */
  7.  
  8. #define Malloc(i) mustalloc(i)         /* for cases where we must alloc */
  9. #define Strdup(s) mustdup(s)           /* memory or we die */
  10. #define Strndup(s,n) mustndup(s,n)
  11.  
  12. #ifdef LINT_ARGS
  13. char * ALTCALL mustalloc(int);         /* Malloc() */
  14. char * ALTCALL mustdup(char *);        /* Strdup() */
  15. char * ALTCALL mustndup(char *, int);  /* Strndup() */
  16. #else
  17. char * ALTCALL mustalloc();            /* Malloc() */
  18. char * ALTCALL mustdup();              /* Strdup() */
  19. char * ALTCALL mustndup();             /* Strndup() */
  20. #endif